home *** CD-ROM | disk | FTP | other *** search
/ Tandy Sensation 2 / Tandy Sensation II System.iso / prodigy / setport.bat < prev    next >
DOS Batch File  |  1992-08-05  |  2KB  |  47 lines

  1. echo off
  2. if exist pac_obj.dat goto INSTALL_DISK
  3. if exist pac_obj.hdr goto INSTALL_DISK
  4. if %1 .==. goto BAD_PARAMETER
  5. if %1 == 1 goto OK
  6. if %1 == 2 goto OK
  7. if %1 == 3 goto OK
  8. if %1 == 4 goto OK
  9. goto BAD_PARAMETER
  10. :OK
  11. echo echo off >$#12345.bat
  12. echo cls >>$#12345.bat
  13. echo modemutl x %1 >>$#12345.bat
  14. echo :START >>$#12345.bat
  15. echo if exist RESTART.PRD del RESTART.PRD >>$#12345.bat
  16. echo rs %%1 %%2  %%3 %%4 %%5 %%6 %%7 %%8 %%9 >>$#12345.bat
  17. echo if exist RESTART.PRD goto START >>$#12345.bat
  18. echo modemutl e %1 >>$#12345.bat
  19. echo echo on >>$#12345.bat
  20. copy prodigy.bat prod_bat.bak >NUL
  21. copy $#12345.bat prodigy.bat >NUL
  22. erase $#12345.bat
  23. goto END
  24. :INSTALL_DISK
  25. echo ***************************************
  26. echo * This program must be copied to your *
  27. echo * hard drive or to Personal Disk A    *
  28. echo * before use.  Copy it, then run it   *
  29. echo * from there.                         *
  30. echo *                                     *
  31. echo * EXAMPLE:                            *
  32. echo *  copy a:SETPORT.BAT c:\PRODIGY      *
  33. echo ***************************************
  34. goto END
  35. :BAD_PARAMETER
  36. echo ***************************************
  37. echo * Please specify the number of the    *
  38. echo * port you wish to setport when you   *
  39. echo * use the service.  Use only 1, 2,    *
  40. echo * 3, or 4.                            *
  41. echo *                                     *
  42. echo * EXAMPLE:                            *
  43. echo *  setport 2                          *
  44. echo ***************************************
  45. :END
  46. echo on
  47.